// Lang_06 [calling local static methods].nova // The application class. class LocalStaticMethodsApp { // Application class's "main" function. public static void main( String[] args ) { Stream.writeLine( "One." ); // Call the first static method. method1( ); Stream.writeLine( "Three." ); // Call the second static method with the optional class name. LocalStaticMethodsApp.method2( ); Stream.writeLine( "Five." ); } private static void method1( ) { Stream.writeLine( "Two." ); } private static void method2( ) { Stream.writeLine( "Four." ); } }